All Questions
Tagged with guimultithreading
10 questions
4votes
2answers
1kviews
Traffic simulation GUI: an exercise in concurrent programming using threads
To avoid a code dump I have removed most of the code and left the first few lines of constructors and methods and anything relevant. Full code at the bottom. The purpose of this code is to use threads ...
3votes
1answer
949views
Real time histogram using multithreading (Qt + Qwt)
I'm writing a GUI for different VME modules (electronics). There are several of them which are used for the data acquisition. For example, an ADC produces the digitized maximum voltage on its input. ...
0votes
1answer
2kviews
Java Multi-threaded Chat Room
In an attempt to learn more with Java, I decided to challenge myself by creating a GUI-based, multi-threaded chat room. Currently, you run the Client and it prompts you to either create or join a ...
6votes
1answer
404views
A GUI program for a Buzzer system using Arduino
At the outset, I am a beginner at Python, having started out about 2 weeks back. Aim- To create a GUI program, that can adequately work as a buzzer-management system. A buzzer, like those used in ...
1vote
1answer
5kviews
Improving GUI update call from a worker thread in winforms
I have a winforms app and I've been using the following approach to update controls on the main form from worker threads: GamepadManager class has: ...
7votes
2answers
101views
Cancellable UI loader
I'm playing with async/await, but I have yet to discover a standard method to safely cancel an intensive task. I have tested the following, and it works exactly as intended, though I remain unsure if ...
7votes
3answers
15kviews
Displaying a wait cursor while we're waiting
I come from VB6 where everything is single threaded, so I've never written a lick of multi-threaded code before. I just added a wait cursor to one of our GUI's by stumbling through the docs, but I'm ...
8votes
1answer
1kviews
Generic GUI background task runner (Java 8+)
Here is the culprit; headers omitted for brevity, and also, see notes afterwards: ...
2votes
1answer
952views
Pausing and Manipulating Data in a Process with a GUI [closed]
I think I have fixed the issues which caused this program to not be functional. Now I believe the design of my code is somewhat bad and may be causing problems with the number of processes that are ...
3votes
2answers
5kviews
Java Bouncing Ball Review
Just looking for some help reviewing/refactoring. For example, could the classes random/vertical be refactored into 1 class instead of 2? BouncingBalls.java ...